home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SUPRMANT.ARJ / SMUTIL.EXE / SAMPLE1.C < prev    next >
Text File  |  1990-07-26  |  377b  |  21 lines

  1. /*************************************************************************
  2. *                                         *
  3. * SAMPLE1.C                                 *
  4. *                                         *
  5. *************************************************************************/
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. int second_function()
  11. {
  12.     printf("\n\nHello ");
  13.     return(1);
  14. }
  15. int third_function()
  16. {
  17.     printf("World...\n");
  18.     return(1);
  19. }
  20.  
  21.